ABC085 C - Otoshidama
https://atcoder.jp/contests/abc085/tasks/abc085_c
提出
code: python
n, Y = map(int, input().split())
for x in range(n+1):
for y in range(n+1):
z = n - x - y
if (10000 * x + 5000 * y + 1000 * z == Y and z >= 0):
print(x, y, z)
exit()
print(-1, -1, -1)
テーマ
蟻本 1-6 三角形